INPUT_RECORD (Structures)
Last changed: -177.51.184.79

.
Summary
Used to report input events in the console input buffer

C# Definition:

[StructLayout(LayoutKind.Sequential)]

struct INPUT_RECORD {

  public System.UInt16 EventType;
  public System.Int32 bKeyDown;
  public System.UInt16 wRepeatCount;
  public System.UInt16 wVirtualKeyCode;
  public System.UInt16 wVirtualScanCode;
  public System.UInt16 uChar;
  public System.UInt16 dwControlKeyState;

}

VB Definition:

Structure INPUT_RECORD
   Public TODO
End Structure

User-Defined Field Types:

None.

Notes:

Defined in wincon.h

Documentation